home *** CD-ROM | disk | FTP | other *** search
/ The National Palace Museum Experience / The National Palace Museum Experience.iso / Programs / Object.dxr / 00110.ls < prev    next >
Encoding:
Text File  |  1998-11-19  |  1.8 KB  |  63 lines

  1. on enterFrame
  2.   set mouseposition to point(the mouseH, the mouseV)
  3.   if inside(mouseposition, rect(0, 30, 30, 450)) then
  4.     changecursor("CursorLeft")
  5.     scrollpictleft(10)
  6.   else
  7.     if inside(mouseposition, rect(610, 30, 640, 450)) then
  8.       changecursor("CursorRight")
  9.       scrollpictright(10)
  10.     else
  11.       changecursor("Shrink")
  12.     end if
  13.   end if
  14. end
  15.  
  16. on exitFrame
  17.   go(the frame)
  18. end
  19.  
  20. on scrollpictleft step
  21.   if the left of sprite 52 < 0 then
  22.     set the locH of sprite 43 to the locH of sprite 43 + step
  23.     repeat with spriteNum = 43 to 51
  24.       set the locH of sprite (spriteNum + 1) to the locH of sprite spriteNum - the width of sprite spriteNum + (320 - (the width of sprite (spriteNum + 1) / 2))
  25.     end repeat
  26.   else
  27.     set the locH of sprite 52 to the width of sprite 52 / 2
  28.   end if
  29. end
  30.  
  31. on scrollpictright step
  32.   if the right of sprite 43 > 640 then
  33.     set the locH of sprite 43 to the locH of sprite 43 - step
  34.     repeat with spriteNum = 43 to 51
  35.       set the locH of sprite (spriteNum + 1) to the locH of sprite spriteNum - the width of sprite spriteNum + (320 - (the width of sprite (spriteNum + 1) / 2))
  36.     end repeat
  37.   else
  38.     set the locH of sprite 43 to 640 - (the width of sprite 43 / 2)
  39.   end if
  40. end
  41.  
  42. on changecursor cname
  43.   global cursorsprite
  44.   set cursorsprite to 54
  45.   puppetSprite(cursorsprite, 1)
  46.   set the memberNum of sprite cursorsprite to the number of member cname
  47.   set the locH of sprite cursorsprite to the mouseH
  48.   set the locV of sprite cursorsprite to the mouseV
  49.   updateStage()
  50. end
  51.  
  52. on mouseDown
  53.   global contentsprite, objnamesprite, cursorsprite
  54.   puppetSprite(2, 0)
  55.   puppetSprite(3, 0)
  56.   set the visible of sprite 1 to 1
  57.   set the visible of sprite contentsprite to 1
  58.   set the visible of sprite objnamesprite to 1
  59.   cursor(-1)
  60.   puppetSprite(cursorsprite, 0)
  61.   go("Restart")
  62. end
  63.